how to use monitor from system.threading in c#

85

how to use monitor from system.threading in c# -

Monitor.Enter(object)
  try
  {
    // do something 
  }
	catch{}
	finally{ Monitor.Exit(object)}

Comments

Submit
0 Comments